style.module.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .notificationPage {
  2. :global(.adm-tabs-tab-list) {
  3. margin: 0 0.12rem 0.12rem;
  4. background-color: #1f2830;
  5. border-radius: 0.1rem;
  6. height: 0.4rem;
  7. position: relative;
  8. }
  9. :global(.adm-tabs) {
  10. height: 100%;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: stretch;
  14. }
  15. :global(.adm-tabs-content) {
  16. flex: 1;
  17. min-height: 0;
  18. overflow: auto;
  19. padding: 0;
  20. }
  21. :global(.adm-tabs-tab) {
  22. padding-bottom: 0;
  23. }
  24. // :global(.adm-tabs-tab-line) {
  25. // bottom: 0.08rem;
  26. // }
  27. :global(.adm-tabs-tab-line) {
  28. top: 0;
  29. bottom: 0;
  30. background: #11de68;
  31. height: 100%;
  32. border-radius: 0.1rem;
  33. }
  34. :global(.adm-tabs-tab-wrapper) {
  35. flex: 1;
  36. padding: 0;
  37. height: 100%;
  38. }
  39. :global(.adm-tabs-tab) {
  40. padding: 0;
  41. margin: 0;
  42. width: 100%;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. height: 100%;
  47. color: #5d7284;
  48. font-weight: 700;
  49. }
  50. :global(.adm-tabs-tab-active) {
  51. color: #122f23;
  52. }
  53. }
  54. .header {
  55. background: #1e252b;
  56. }